    .auth-section {
      min-height: calc(100vh - 80px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 24px;
    }
    .auth-wrap {
      width: 100%;
      max-width: 480px;
    }
    .auth-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 52px 48px;
      box-shadow: var(--shadow-md);
    }
    .auth-head {
      text-align: center;
      margin-bottom: 36px;
    }
    .auth-head .section-eyebrow { margin-bottom: 12px; }
    .auth-head h1 {
      font-size: clamp(1.7rem, 3vw, 2.2rem);
      margin-bottom: 10px;
    }
    .auth-head p {
      font-size: 0.95rem;
      color: var(--muted);
    }

    /* Tabs */
    .auth-tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--bg-alt);
      border-radius: 10px;
      padding: 4px;
      margin-bottom: 32px;
    }
    .auth-tab {
      border: none;
      background: transparent;
      padding: 10px;
      border-radius: 8px;
      font: inherit;
      font-size: 0.88rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      cursor: pointer;
      transition: var(--transition);
    }
    .auth-tab.active {
      background: var(--white);
      color: var(--ink);
      box-shadow: var(--shadow-sm);
    }

    /* Forms */
    .auth-form { display: none; flex-direction: column; gap: 18px; }
    .auth-form.active { display: flex; }

    .field-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .field-group label {
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .field-group input {
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 12px 16px;
      font: inherit;
      font-size: 0.95rem;
      color: var(--ink);
      background: var(--bg);
      transition: border-color var(--transition);
      outline: none;
      width: 100%;
    }
    .field-group input:focus {
      border-color: var(--gold);
      background: var(--white);
    }
    .field-group.error input { border-color: #c0392b; }
    .field-group.error input[type="checkbox"] { outline: 2px solid #c0392b; }
    .field-error {
      font-size: 0.78rem;
      color: #c0392b;
      display: none;
    }
    .field-group.error .field-error { display: block; }

    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    .auth-submit {
      width: 100%;
      padding: 14px;
      background: var(--ink);
      color: var(--bg);
      border: none;
      border-radius: 8px;
      font: inherit;
      font-size: 0.88rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition);
      margin-top: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .auth-submit:hover { background: var(--gold-dark); }
    .auth-submit:disabled { opacity: 0.6; cursor: not-allowed; }

    .spinner {
      width: 16px; height: 16px;
      border: 2px solid rgba(250,247,242,0.3);
      border-top-color: var(--bg);
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      display: none;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    .auth-msg {
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 0.9rem;
      display: none;
      margin-top: 4px;
    }
    .auth-msg.error { background: #fdf0ef; color: #c0392b; border: 1px solid #f5c6c6; display: block; }
    .auth-msg.success { background: #edf7ed; color: #2d7a2d; border: 1px solid #b8e0b8; display: block; }

    /* Benefits strip */
    .auth-benefits {
      margin-top: 32px;
      padding-top: 28px;
      border-top: 1px solid var(--line);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      text-align: center;
    }
    .benefit-item span {
      display: block;
      font-size: 1.4rem;
      margin-bottom: 6px;
    }
    .benefit-item p {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.4;
    }

    @media (max-width: 540px) {
      .auth-card { padding: 36px 24px; }
      .field-row { grid-template-columns: 1fr; }
      .auth-benefits { grid-template-columns: 1fr; }
    }
        /* ══════════════════════════════════════════
       DASHBOARD — Redesigned UI
    ══════════════════════════════════════════ */

    /* Hero */
    .dash-hero {
      background: #1a1410;
      color: #faf7f2;
      padding: 0;
      position: relative;
      overflow: hidden;
    }
    .dash-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,137,90,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184,137,90,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .dash-hero-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      padding: 56px 0 52px;
      position: relative;
    }
    .dash-greeting .section-eyebrow {
      color: var(--gold-soft);
      letter-spacing: 0.3em;
      font-size: 0.72rem;
    }
    .dash-greeting h1 {
      color: #faf7f2;
      font-size: clamp(2rem, 4vw, 3rem);
      margin: 10px 0 6px;
      font-weight: 400;
      letter-spacing: -0.01em;
    }
    .dash-greeting p {
      color: rgba(250,247,242,0.65);
      font-size: 0.85rem;
      letter-spacing: 0.04em;
    }
    .dash-hero-actions {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-shrink: 0;
    }
    .dash-logout {
      border: 1px solid rgba(250,247,242,0.15);
      background: transparent;
      color: rgba(250,247,242,0.5);
      padding: 9px 20px;
      border-radius: 8px;
      font: inherit;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition);
    }
    .dash-logout:hover {
      border-color: rgba(250,247,242,0.3);
      color: rgba(250,247,242,0.85);
    }

    /* Layout */
    .dash-grid {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 36px;
      align-items: start;
      padding: 48px 0 100px;
    }

    /* ── Sidebar ── */
    .profile-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      position: sticky;
      top: 24px;
    }

    .profile-avatar {
      background: linear-gradient(160deg, #1a1410 0%, #3d2e22 100%);
      padding: 36px 24px 28px;
      text-align: center;
      position: relative;
    }
    .profile-avatar::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(184,137,90,0.4), transparent);
    }
    .avatar-wrap { margin-bottom: 14px; }
    .avatar-circle {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      color: var(--ink);
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 400;
      display: grid;
      place-items: center;
      margin: 0 auto;
      border: 3px solid rgba(255,255,255,0.1);
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .profile-avatar strong {
      display: block;
      font-family: var(--serif);
      font-size: 1.15rem;
      color: #faf7f2;
      font-weight: 400;
      margin-bottom: 3px;
    }
    .profile-avatar p {
      font-size: 0.78rem;
      color: rgba(250,247,242,0.45);
      margin: 0;
    }

    /* member badge */
    .member-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(184,137,90,0.15);
      border: 1px solid rgba(184,137,90,0.3);
      color: var(--gold-soft);
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 999px;
      margin-top: 10px;
    }

    .profile-fields {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .profile-field label {
      display: block;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 5px;
      font-weight: 500;
    }
    .profile-field input {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 10px 13px;
      font: inherit;
      font-size: 0.875rem;
      color: var(--ink);
      background: var(--bg);
      outline: none;
      transition: border-color var(--transition), background var(--transition);
    }
    .profile-field input:focus {
      border-color: var(--gold);
      background: var(--white);
    }
    .profile-field input:disabled { opacity: 0.5; cursor: not-allowed; }

    .profile-save {
      width: 100%;
      padding: 11px;
      background: var(--ink);
      color: var(--bg);
      border: none;
      border-radius: 8px;
      font: inherit;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition);
      margin-top: 4px;
    }
    .profile-save:hover { background: var(--gold-dark); }
    .profile-save:disabled { opacity: 0.5; cursor: not-allowed; }
    .profile-msg {
      font-size: 0.8rem;
      text-align: center;
      min-height: 18px;
      color: var(--gold-dark);
    }

    /* ── Main content ── */
    .dash-section-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }
    .dash-section-head .section-eyebrow {
      display: block;
      margin-bottom: 4px;
      font-size: 0.68rem;
    }
    .dash-section-head h2 {
      font-size: 1.5rem;
      font-weight: 400;
      margin: 0;
    }
    .dash-count-pill {
      font-size: 0.75rem;
      color: var(--gold-dark);
      background: rgba(184,137,90,0.08);
      border: 1px solid rgba(184,137,90,0.2);
      padding: 3px 10px;
      border-radius: 999px;
      letter-spacing: 0.05em;
      white-space: nowrap;
    }

    /* Offers */
    .offers-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 24px;
    }
    .offers-head h2 { font-size: 1.5rem; font-weight: 400; margin: 0; }
    .offers-count {
      font-size: 0.8rem;
      color: var(--muted);
    }
    .offers-list { display: flex; flex-direction: column; gap: 14px; }

    .offer-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 14px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 5px 1fr;
      transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    }
    .offer-card:hover {
      box-shadow: 0 8px 32px rgba(60,40,20,0.10);
      border-color: var(--gold-soft);
      transform: translateY(-2px);
    }
    .offer-accent { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); }
    .offer-body { padding: 22px 24px; }
    .offer-meta {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }
    .offer-badge {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-dark);
      background: rgba(184,137,90,0.08);
      border: 1px solid rgba(184,137,90,0.2);
      padding: 3px 10px;
      border-radius: 999px;
    }
    .offer-until {
      font-size: 0.78rem;
      color: var(--muted);
    }
    .offer-discount {
      font-family: var(--serif);
      font-size: 2.2rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 6px;
    }
    .offer-title {
      font-family: var(--serif);
      font-size: 1.2rem;
      color: var(--ink);
      margin-bottom: 6px;
    }
    .offer-desc {
      font-size: 0.9rem;
      color: var(--ink-soft);
      line-height: 1.65;
    }
    .offer-cta {
      display: inline-block;
      margin-top: 14px;
      padding: 8px 20px;
      background: var(--ink);
      color: var(--bg);
      border-radius: 7px;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: var(--transition);
      text-decoration: none;
    }
    .offer-cta:hover { background: var(--gold-dark); color: var(--bg); }

    .no-offers {
      text-align: center;
      padding: 60px 24px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 14px;
    }
    .no-offers p { color: var(--muted); margin-top: 12px; font-size: 0.9rem; }

    /* Orders section */
    .orders-section { margin-top: 52px; }

    .orders-tabs-bar {
      display: none;
      gap: 0;
      margin-bottom: 20px;
      background: var(--bg-alt);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 4px;
      width: fit-content;
    }
    .orders-tab-btn {
      background: none;
      border: none;
      border-radius: 7px;
      padding: 8px 18px;
      font-family: var(--sans);
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      transition: var(--transition);
      letter-spacing: 0.04em;
    }
    .orders-tab-btn.active {
      background: var(--white);
      color: var(--ink);
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }

    .order-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 14px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .order-card:hover {
      box-shadow: 0 6px 24px rgba(60,40,20,0.08);
      transform: translateY(-1px);
    }
    .order-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      padding: 16px 20px;
      background: var(--bg-alt);
      border-bottom: 1px solid var(--line);
    }
    .order-ref {
      font-family: var(--serif);
      font-size: 1.05rem;
      color: var(--ink);
      letter-spacing: 0.05em;
    }
    .order-date {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 2px;
    }
    .order-status-badge {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 999px;
    }
    .status-pending   { background: #fff8e1; color: #8a6400; border: 1px solid #ffe082; }
    .status-ready     { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
    .status-completed { background: #f0f9ff; color: #0c4a6e; border: 1px solid #bae6fd; }
    .status-cancelled { background: #fef2f2; color: #7f1d1d; border: 1px solid #fecaca; }

    .order-card-body { padding: 16px 20px; }
    .order-items-list {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 10px;
    }
    .order-item-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.875rem;
      color: var(--ink-soft);
      gap: 12px;
      padding: 5px 0;
      border-bottom: 1px solid var(--line);
    }
    .order-item-row:last-child { border-bottom: none; }
    .order-item-row span:last-child {
      font-weight: 500;
      color: var(--ink);
      white-space: nowrap;
    }
    .order-card-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
      padding: 12px 20px;
      border-top: 1px solid var(--line);
      background: var(--bg-alt);
    }
    .order-pickup {
      font-size: 0.8rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .order-total {
      font-family: var(--serif);
      font-size: 1.5rem;
      color: var(--ink);
    }
    .orders-empty {
      text-align: center;
      padding: 56px 0;
      color: var(--muted);
    }
    .orders-empty span { font-size: 2.8rem; display: block; margin-bottom: 12px; opacity: 0.5; }
    .orders-empty p { font-size: 0.9rem; line-height: 1.7; }

    /* Loading */
    .loading-state {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--muted);
      font-size: 0.88rem;
      padding: 20px 0;
    }
    .loading-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 1.2s ease-in-out infinite;
    }
    .loading-dot:nth-child(2) { animation-delay: 0.2s; }
    .loading-dot:nth-child(3) { animation-delay: 0.4s; }
    @keyframes pulse { 0%,100% { opacity: 0.2; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1); } }

    @media (max-width: 900px) {
      .dash-grid { grid-template-columns: 1fr; }
      .profile-card { position: static; }
    }
    @media (max-width: 600px) {
      .dash-hero-inner { padding: 40px 0 36px; }
      .dash-greeting h1 { font-size: 1.8rem; }
    }

    /* Password Toggle styles */
    .password-wrapper {
      position: relative;
      width: 100%;
    }
    .password-wrapper input {
      padding-right: 48px !important;
    }
    .password-toggle {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      transition: color var(--transition);
      z-index: 5;
    }
    .password-toggle:hover {
      color: var(--ink);
    }
    .password-toggle svg {
      display: block;
      pointer-events: none;
    }

    /* ── Verification Banner ───────────────────────────────── */
    .verification-banner {
      display: flex;
      align-items: center;
      gap: 20px;
      background: #1e1510;
      border: 1px solid rgba(184, 137, 90, 0.4);
      border-radius: 12px;
      padding: 20px 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      margin-bottom: 24px;
      transition: all 0.3s ease;
      position: relative;
    }
    .verification-banner::before {
      content: '';
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 4px;
      background: #b8895a;
      border-radius: 12px 0 0 12px;
    }
    .verification-banner-icon {
      font-size: 1.8rem;
      flex-shrink: 0;
    }
    .verification-banner-content {
      flex-grow: 1;
    }
    .verification-banner-content h3 {
      margin: 0 0 4px;
      font-size: 1.1rem;
      font-weight: 500;
      color: #faf7f2;
      font-family: 'Cormorant Garamond', serif;
      letter-spacing: 0.05em;
    }
    .verification-banner-content p {
      margin: 0;
      font-size: 0.88rem;
      color: #b8a99a;
      line-height: 1.5;
    }
    .verification-banner-actions {
      flex-shrink: 0;
    }
    .verification-resend-btn {
      background: #b8895a;
      color: #1e1510;
      border: none;
      border-radius: 8px;
      padding: 10px 20px;
      font-family: inherit;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      outline: none;
    }
    .verification-resend-btn:hover {
      background: #d9b88a;
      color: #1a1209;
      box-shadow: 0 0 12px rgba(217, 184, 138, 0.3);
    }
    .verification-resend-btn:active {
      transform: scale(0.98);
    }
    .verification-resend-btn:disabled {
      background: #4a3c31;
      color: #8a7864;
      cursor: not-allowed;
      opacity: 0.8;
    }

    @media (max-width: 768px) {
      .verification-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
      }
      .verification-banner-actions {
        width: 100%;
      }
      .verification-resend-btn {
        width: 100%;
        justify-content: center;
      }
    }

